home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Clipboard / GlobalPaster.cp < prev    next >
Text File  |  2000-06-23  |  324b  |  18 lines

  1. // GlobalPaster.cp
  2.  
  3. #ifndef GlobalPaster_h
  4. #include "GlobalPaster.h"
  5. #endif
  6. #ifndef ApplicationFocus_h
  7. #include "ApplicationFocus.h"
  8. #endif
  9. #ifndef CantEditInBackground_h
  10. #include "CantEditInBackground.h"
  11. #endif
  12.  
  13. GlobalPaster::GlobalPaster()
  14.   {
  15.     if ( !ApplicationFocus::The().Active() )
  16.         throw CantEditInBackground();
  17.   }
  18.